home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-06-15 | 930 b | 41 lines | [TEXT/MPS ] |
- ; File: E16.LineEdit
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-93
- ; All Rights Reserved
- ;
- ;
- leDupStrtUpErr GEQU $1401 ; duplicate LEStartup call
- leResetError GEQU $1402 ; can't reset Line Edit
- leNotActiveErr GEQU $1403 ; Line Edit not active
- leScrapErr GEQU $1404 ; desk scrap too big to copy
- leJustLeft GEQU $0000
- leJustCenter GEQU $0001
- leJustFill GEQU $0002
- leJustRight GEQU $FFFF
- ; offset constants for LERec
- oleLineHandle GEQU 0
- oleLength GEQU 4
- oleMaxLength GEQU 6
- oleDestRect GEQU 8
- oleViewRect GEQU 16
- olePort GEQU 24
- oleLineHite GEQU 28
- oleBaseHite GEQU 30
- oleSelStart GEQU 32
- oleSelEnd GEQU 34
- oleActFlg GEQU 36
- oleCarAct GEQU 38
- oleCarOn GEQU 40
- oleCarTime GEQU 42
- oleHiliteHook GEQU 46
- oleCaretHook GEQU 50
- oleJust GEQU 54
- olePWChar GEQU 56
-
- leKeyIsSpecial GEQU $8000 ;$06,$08,$15,$18,$19,$7F
- leKeyIsNumber GEQU $4000 ;0-9
- leKeyIsHex GEQU $2000 ;A-F
- leKeyIsAlpha GEQU $1000 ;A-Z
- leKeyIsNonControl GEQU $0800 ;$20-$FE
-